Skip to content

Commit

Permalink
Rename a type alias
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Sep 13, 2024
1 parent 59d86cc commit c0a4485
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flutter_package/bin/src/message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ use std::sync::LazyLock;
await insertTextToFile(
rustPath,
'''
type ${messageName}Cell = LazyLock<(
type ${messageName}Store = LazyLock<(
SignalSender<DartSignal<${normalizePascal(messageName)}>>,
SignalReceiver<DartSignal<${normalizePascal(messageName)}>>,
)>;
pub static ${snakeName.toUpperCase()}_CHANNEL: ${messageName}Cell =
pub static ${snakeName.toUpperCase()}_CHANNEL: ${messageName}Store =
LazyLock::new(signal_channel);
impl ${normalizePascal(messageName)} {
Expand Down

0 comments on commit c0a4485

Please sign in to comment.