mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 00:51:20 +00:00
32 lines
852 B
Dart
32 lines
852 B
Dart
|
import 'package:selfprivacy/logic/api_maps/rest_maps/dns_providers/desired_dns_record.dart';
|
||
|
|
||
|
/// Fake data collections to fill skeletons
|
||
|
class FakeSelfPrivacyData {
|
||
|
static final List<DesiredDnsRecord> desiredDnsRecords = <DesiredDnsRecord>[
|
||
|
...List.generate(
|
||
|
6,
|
||
|
(final index) => const DesiredDnsRecord(
|
||
|
type: 'A',
|
||
|
name: 'example.com',
|
||
|
description: 'Service name',
|
||
|
content: '192.0.2.100',
|
||
|
),
|
||
|
),
|
||
|
...List.generate(
|
||
|
4,
|
||
|
(final index) => const DesiredDnsRecord(
|
||
|
type: 'TXT',
|
||
|
name: 'example.com',
|
||
|
description: 'Service name',
|
||
|
content: 'Some text text text',
|
||
|
),
|
||
|
),
|
||
|
const DesiredDnsRecord(
|
||
|
type: 'CAA',
|
||
|
name: 'example.com',
|
||
|
description: 'Service name',
|
||
|
content: 'Some very very long text text text',
|
||
|
),
|
||
|
];
|
||
|
}
|